! Configuration by Bento ;) 
! mailto:mauricio@bentow.com.br

configure terminal
	hostname R1
	service password-encryption
	enable secret cisco
	
	line console 0
		password cisco
		login
		exit

	line vty 0 4
		password cisco
		login
		exit

	int s0/0
		description "DCE Link to R2"
		ip address 172.16.1.5 255.255.255.252
		encapsulation ppp
		clock rate 56000
		bandwidth 2000
		no shutdown
		exit
	
	int s0/1
		description "DCE Link to R3"
		ip address 172.16.1.9 255.255.255.252
		encapsulation ppp
		clock rate 56000
		bandwidth 56
		no shutdown
		exit

	int s0/2
		description "DTE Link to ISP"
		ip address 198.0.0.1 255.255.255.252
		encapsulation ppp
		no shutdown
		exit
	
	router eigrp 200
		network 172.16.1.0
		network 198.0.0.0
		no auto-summary

		redistribute static
		exit

	ip route 0.0.0.0 0.0.0.0 serial 0/2
	

exit
	
	

copy running-config startup-config